v3.4.1 to v3.4.2
AUTOMATIC MIGRATION
-
Use the BIAToolKit to migrate the project
-
Manage the conflict (2 solutions)
- In BIAToolKit click on "4 - merge Rejected" and search
<<<<<
in all files.
- Resolve the conflict manually.
- Analyze the .rej file (search "diff a/" in VS code) that have been created in your project folder
- Apply manually the change.
- In BIAToolKit click on "4 - merge Rejected" and search
FRONT
- If some feature use SignalR : Correct the Client for Hub (SignalR) to match with the new model (see plane example). The signalR message are now filter by feature and site.
- Add the translation of your roles in i18n files.
BACK
-
Replace in the solution
using BIA.Net.Core.Application;
byusing BIA.Net.Core.Domain.Service;
-
Replace in the solution
using BIA.Net.Core.Application.Authentication;
byusing BIA.Net.Core.Domain.Authentication;
-
Replace in the solution
userRight
byuserPermission
-
Replace in the solution
UserRight
byUserPermission
-
Correct the table key: Replace
tableStateKey = this.useView ? 'xxxxxxxGrid' : undefined;
BytableStateKey = this.useView ? 'xxxxxxxGrid' : '';
-
Correct the Client for Hub (SignalR) to match with the new model (see plane example). The signalR message are now filter by feature and site. The client for hub is now a domain service.